Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
go
Commits
eed1917a
Commit
eed1917a
authored
Dec 23, 2016
by
Zosman
Browse files
added approved to blocked users table
parent
569f722c
Changes
1
Hide whitespace changes
Inline
Side-by-side
go/go/templates/admin/useradmin.html
View file @
eed1917a
...
...
@@ -81,8 +81,7 @@ SRCT Go • Administration Panel
</div>
<!-- TABLE 2 -->
<!-- define the table that displays blocked users and allows us to unblock
them -->
<!-- define the table that displays blocked users and allows us to unblock them -->
<div
class=
"row"
>
<div
class=
"col-md-12"
>
<h3>
Blocked Users
</h3>
...
...
@@ -99,6 +98,7 @@ them -->
<th>
Username
</th>
<th>
Full Name
</th>
<th>
Description
</th>
<th>
Approved
</th>
</tr>
</thead>
...
...
@@ -111,6 +111,7 @@ them -->
<td>
{{ blockedUsers.user }}
</td>
<td>
{{ blockedUsers.full_name }}
</td>
<td>
{{ blockedUsers.description|default:"No description provided" }}
</td>
<td>
{{ blockedUsers.approved }}
</td>
</tr>
<!-- unless there are no blocked users -->
{% empty %}
...
...
@@ -119,6 +120,7 @@ them -->
<td>
none
</td>
<td>
none
</td>
<td>
none
</td>
<td>
none
</td>
</tr>
{% endfor %}
</tbody>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment